diff options
Diffstat (limited to 'app/[lng]/partners/repository/page.tsx')
| -rw-r--r-- | app/[lng]/partners/repository/page.tsx | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/app/[lng]/partners/repository/page.tsx b/app/[lng]/partners/repository/page.tsx new file mode 100644 index 00000000..51c0fae5 --- /dev/null +++ b/app/[lng]/partners/repository/page.tsx @@ -0,0 +1,11 @@ +import { CompanyAuthForm } from "@/components/login/partner-auth-form" +import { Suspense } from "react" + +export default function RepositiryPage() { + return ( + <Suspense fallback={<div>Loading ...</div>}> + <CompanyAuthForm /> + </Suspense> + + ) +} |
